a16e1c4f4bf12a270bd63ee8e118c9c4b32edd69,src/com/comcast/cns/persistence/CNSTopicCassandraPersistence.java,CNSTopicCassandraPersistence,updateTopicDisplayName,#String#String#,275
Before Change
if (topic != null) {
topic.setDisplayName(displayName);
topic.checkIsValid();
cassandraHandler.insertOrUpdateRow(topic.getArn(), columnFamilyTopics, getColumnValues(topic), CMBProperties.getInstance().getWriteConsistencyLevel());
}
CNSCache.removeTopic(arn);
After Change
if (topic != null) {
topic.setDisplayName(displayName);
topic.checkIsValid();
cassandraHandler.insertRow(KEYSPACE, topic.getArn(), columnFamilyTopics, getColumnValues(topic), CMB_SERIALIZER.STRING_SERIALIZER, CMB_SERIALIZER.STRING_SERIALIZER, CMB_SERIALIZER.STRING_SERIALIZER, null);
}
CNSCache.removeTopic(arn);